home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex12.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  178 b   |  13 lines

  1. Program Example12;
  2.  
  3. { Program to demonstrate the Cos function. }
  4.  
  5. Var R : Real;
  6.  
  7. begin
  8.   R:=Cos(Pi);    { R:=-1 }
  9.   R:=Cos(Pi/2);  { R:=0  }
  10.   R:=Cos(0);     { R:=1  }    
  11. end.
  12.  
  13.